home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / BNU22SR1.ZIP / src / binutils.2 / ld / genscrip.sh < prev    next >
Text File  |  1993-05-30  |  3KB  |  82 lines

  1. # This shell script does the work of generating the ld-emulation-target
  2. # specific information from a specific file of paramaters.
  3. # Usage: genscripts.sh srcdir host_alias target_alias emulation_name
  4.  
  5. srcdir=$1
  6. host_alias=$2
  7. target_alias=$3
  8.  
  9. # Include the emulation-specific parameters:
  10. . ${srcdir}/$4
  11.  
  12. # Set the library search path (for libraries named by -lfoo).
  13. # If LIB_PATH is defined (and non-empty), it is used.
  14. # (The format is the usual list of colon-separated directories.)
  15. # (To force a logically empty LIB_PATH, do LIBPATH=":".)
  16. # Otherwise, the default is /lib:/usr/lib:/usr/local/lib,
  17. # unless cross-compiling, in which case the default remains empty.
  18.  
  19. if [ "x${LIB_PATH}" = "x" -a "x${host_alias}" = "x${target_alias}" ] ; then
  20.    LIB_PATH=/lib:/usr/lib:/usr/local/lib
  21. fi
  22. LIB_SEARCH_DIRS=`echo ${LIB_PATH} | tr ':' ' ' | sed -e 's/\([^ ][^ ]*\)/SEARCH_DIR(\1);/g'`
  23.  
  24. # This  script generates 5 script files from the master script template
  25. # in ${srcdir}/${SCRIPT_NAME}.sh.  Which one of the 5 script files
  26. # is actually used depends on command line flags given to ld.
  27. # The actual script is filtered through the mkscript program
  28. # to convert it to a form suitable for including in a C program
  29. # as a C string literal.
  30. #
  31. # A .x script file is the default script.
  32. # A .xr script is for linking without relocation (-r flag).
  33. # A .xu script is like .xr, but *do* create constructors (-Ur flag).
  34. # A .xn script is for linking with -n flag (mix text and data on same page).
  35. # A .xbn script is for linking with -N flag (mix text and data on same page).
  36.  
  37. SEGMENT_SIZE=${SEGMENT_SIZE-${PAGE_SIZE}}
  38.  
  39. # Determine DATA_ALIGNMENT for the 5 variants, using
  40. # values specified in the <emulation>.sh file or default.
  41.  
  42. DATA_ALIGNMENT_="${DATA_ALIGNMENT_-${DATA_ALIGNMENT-ALIGN(${SEGMENT_SIZE})}}"
  43. DATA_ALIGNMENT_n="${DATA_ALIGNMENT_n-${DATA_ALIGNMENT_}}"
  44. DATA_ALIGNMENT_N="${DATA_ALIGNMENT_N-${DATA_ALIGNMENT-.}}"
  45. DATA_ALIGNMENT_r="${DATA_ALIGNMENT_r-${DATA_ALIGNMENT-}}"
  46. DATA_ALIGNMENT_u="${DATA_ALIGNMENT_u-${DATA_ALIGNMENT_r}}"
  47.  
  48. LD_FLAG=r
  49. DATA_ALIGNMENT=${DATA_ALIGNMENT_r}
  50. DEFAULT_DATA_ALIGNMENT="ALIGN(${SEGMENT_SIZE})"
  51. (. ${srcdir}/${SCRIPT_NAME}.sc-sh) | sed -e '/^ *$/d' | ./mkscript \
  52.   >${EMULATION_NAME}.xr
  53.  
  54. LD_FLAG=u
  55. DATA_ALIGNMENT=${DATA_ALIGNMENT_u}
  56. CONSTRUCTING=yes
  57. (. ${srcdir}/${SCRIPT_NAME}.sc-sh) | sed -e '/^ *$/d' | ./mkscript \
  58.   >${EMULATION_NAME}.xu
  59.  
  60. LD_FLAG=
  61. DATA_ALIGNMENT=${DATA_ALIGNMENT_}
  62. RELOCATING=yes
  63. (. ${srcdir}/${SCRIPT_NAME}.sc-sh) | sed -e '/^ *$/d' | ./mkscript \
  64.   >${EMULATION_NAME}.x
  65.  
  66. LD_FLAG=n
  67. DATA_ALIGNMENT=${DATA_ALIGNMENT_n}
  68. TEXT_START_ADDR=${NONPAGED_TEXT_START_ADDR-${TEXT_START_ADDR}}
  69. (. ${srcdir}/${SCRIPT_NAME}.sc-sh) | sed -e '/^ *$/d' | ./mkscript \
  70.   >${EMULATION_NAME}.xn
  71.  
  72. LD_FLAG=N
  73. DATA_ALIGNMENT=${DATA_ALIGNMENT_N}
  74. (. ${srcdir}/${SCRIPT_NAME}.sc-sh) | sed -e '/^ *$/d' | ./mkscript \
  75.   >${EMULATION_NAME}.xbn
  76.  
  77. #sed -e s/"<ldtarget>"/${EMULATION_NAME}/g -e s/"<arch>"/${ARCH}/g \
  78. # -e s/"<target>"/${EMULATION_NAME}/g -e s/"<target_name>"/${OUTPUT_FORMAT}/g \
  79. # <${srcdir}/${TEMPLATE_NAME-ldtemplate} >e_${EMULATION_NAME}.c
  80.  
  81. . ${srcdir}/${TEMPLATE_NAME-generic}.em
  82.